home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / gl_dev.idb / usr / include / gl / mouse.h.z / mouse.h
Encoding:
C/C++ Source or Header  |  1996-12-06  |  843 b   |  28 lines

  1. #ifndef __GL_MOUSE_H__
  2. #define __GL_MOUSE_H__
  3. #ident "$Revision: 1.2 $"
  4.  
  5. /**************************************************************************
  6.  *                                      *
  7.  *          Copyright (C) 1984, Silicon Graphics, Inc.          *
  8.  *                                      *
  9.  *  These coded instructions, statements, and computer programs  contain  *
  10.  *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
  11.  *  are protected by Federal copyright law.  They  may  not be disclosed  *
  12.  *  to  third  parties  or copied or duplicated in any form, in whole or  *
  13.  *  in part, without the prior written consent of Silicon Graphics, Inc.  *
  14.  *                                      *
  15.  **************************************************************************/
  16.  
  17. struct mouse {
  18.     short     x;
  19.     short     y;
  20.     char    left;
  21.     char    middle;
  22.     char    right;
  23. };
  24.  
  25. #define MOUSEMAXRAW    0x10000
  26.  
  27. #endif /* __GL_MOUSE_H__ */
  28.